-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
59 lines (49 loc) · 1.08 KB
/
Solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <stack>
using namespace std;
struct Node {
int data;
Node* next;
Node(int val) : data(val), next(nullptr) {}
};
void append(Node*& head, int data) {
if (!head) {
head = new Node(data);
return;
}
Node* temp = head;
while (temp->next) temp = temp->next;
temp->next = new Node(data);
}
bool isPalindrome(Node* head) {
stack<int> st;
Node* temp = head;
while (temp) {
st.push(temp->data);
temp = temp->next;
}
temp = head;
while (temp) {
if (temp->data != st.top()) return false;
st.pop();
temp = temp->next;
}
return true;
}
int main() {
Node* head = nullptr;
int n, val;
cout << "Enter number of elements: ";
cin >> n;
cout << "Enter elements:\n";
for (int i = 0; i < n; i++) {
cin >> val;
append(head, val);
}
if (isPalindrome(head)) {
cout << "The linked list is a palindrome." << endl;
} else {
cout << "The linked list is not a palindrome." << endl;
}
return 0;
}